body{
    background-color: #116d7c;
        color: white;
    position: absolute;
    overflow-y: scroll;
}

.container {
    background: linear-gradient(#0095ff, rgb(9, 12, 59));
    border-radius: 2%;
    margin-left: 5%;
    margin-right: 5%;
    margin-top: 5%;
    margin-bottom: 10%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    box-shadow: 6px 6px 10px #0095ff;
  }
  
  .video-container {
    display: flex;
    flex-wrap: wrap;
  }

  /* Style the video div */
  .video {
  margin-top: 1%;
  justify-content: center;
  display: inline-block;
  width: 40%;
  box-sizing: border-box;
  margin-bottom: 20px;
  }
     
  /* Style the text div */
  .text {
    width: 100%;
    margin-bottom: 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
  
  /* Add some extra styles for the text div */
  .text h2 {
    font-size: 24px;
    margin-bottom: 10px;
  }
  .text p {
    font-size: 16px;
    line-height: 1.5;
  }

  .githubpage .git-page{
    position: fixed;
    right: 20%;
    bottom: 10%;
    font-size: 2em;
    background-color: #92058b;
    color: white;
    border-radius: 10px;
    border-color: white;
    transition: border-radius .2s ease-out;
    z-index: 999;
  }

  .githubpage .git-page:hover{
    cursor: pointer;
    border-radius: 0px;
    background-color: #62045dca;
    transition: border-radius .2s ease-out;
  }

  .box{
    padding-left: 10px;
    padding-right: 10px;
    width: 1500px;
  }

  .box .text{
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  }
  
  #panel {
    opacity: 0;
    position: fixed;
    top: 5%;
    left: 15%;
    padding-top: 2%;
    padding-left: 2%;
    padding-right: 2%;
    width: 70%;
    height: 90%;
    display: none;
    background-color: #4f3d14;
    z-index: 9999;
    overflow-y: scroll;
    border-radius: 1%;
  }

  .panel-content {
    top: 10%;
    max-width: 100%;
    max-height: 100%;
    animation: scale-up .5s forwards ease-in-out;
  }

  .panel-content p{
    font-size: larger;
  }
  
  #toggle-btn {
    position: fixed;
    width: 300px;
    height: 50px;
    font-size: 28;
    top: 85%;
    z-index: 10000;
    background-color: #00a51e;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }

  #toggle-btn:hover{
    background-color: #045e14c9;
  }
  
  #toggle-btn:focus + #panel {
    display: block;
    overflow: auto;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    display: flex;
  }

  #panel.open {
    opacity: 1;
    z-index: 1000000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: scale-up .5s forwards ease;
    transition: opacity .5s ease-in-out;
  }

  .overlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0);
    transition: background-color .5s ease-in-out;
    z-index: -2;
  }

  .overlay.opened {
    background-color: rgba(0, 0, 0, 0.5);
    transition: background-color .5s ease-in-out;
    z-index: 999;
  }

  @keyframes text-scale{
    0%{
        font-size: 1.65em;
    }
    50%{
        font-size: 1.6em;
    }
    100%{
        font-size: 1.65em;
    }
  }

  @keyframes scale-up{
    0%{
        background-color: rgba(240, 246, 255, 0);
        scale: 0;
    }
    100%{
        scale: 1;
    }
  }

  body.panel-open {
    position: sticky;
    overflow: hidden;
  }

  #panel .panel-content pre{
    padding-top: 10px;
    padding-bottom: 10px;
    width: fit-content;
    border-style: solid;
    background-color: rgb(46, 46, 46);
  }
